home *** CD-ROM | disk | FTP | other *** search
/ Programmer Power Tools / Programmer Power Tools.iso / editor / j414src.arc / TTYSTATE.H < prev    next >
C/C++ Source or Header  |  1989-10-10  |  455b  |  24 lines

  1. /* Various tty state structures.
  2.  * Each is an array, subscripted by one of "OFF" or "ON".
  3.  */
  4.  
  5. #ifdef UNIX
  6. # ifdef TIOCSLTC
  7. extern struct ltchars    ls[2];
  8. # endif /* TIOCSLTC */
  9.  
  10. # ifdef TIOCGETC
  11. extern struct tchars    tc[2];
  12. # endif
  13.  
  14. # ifdef BRLUNIX
  15. extern struct sg_brl    sg[2];
  16. # else
  17. #  ifdef SYSV
  18. extern struct termio    sg[2];
  19. #  else /* SYSV */
  20. extern struct sgttyb    sg[2];
  21. #  endif /* SYSV */
  22. # endif /* BRLUNIX */
  23. #endif /* UNIX */
  24.